home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gwu / adaed / math / exceptio.ads < prev    next >
Encoding:
Text File  |  1996-01-30  |  1.9 KB  |  42 lines

  1. --  -----------------------------------------------------------------------
  2. --  Title:       elementary_functions_exceptions
  3. --  Last Mod:    Thu Apr 19 11:21:05 1990
  4. --  Author:      Vincent Broman <broman@nosc.mil>
  5. --         copying from the the SIGAda NumWG proposal
  6. --   Copyright 1990 Vincent Broman
  7. --     Permission granted to copy, modify, or compile this software for
  8. --   one's own use, provided that this copyright notice is preserved intact.
  9. --     Permission granted to distribute compiled binary copies of this
  10. --   software which are linked in with some other application.
  11. --     Permission granted to distribute other copies of this software,
  12. --   provided that (1) any copy which is not source code, i.e. not in the
  13. --   form in which the software is usually maintained, must be accompanied
  14. --   by a copy of the source code from which it was compiled, and (2) the
  15. --   one distributing it must refrain from imposing on the recipient
  16. --   further restrictions on the distribution of this software.
  17. --   
  18. --  Visibility:  withed by users of standard math library functions
  19. --  Description: 
  20. --
  21. --       The purpose of this package is (presently) to define a single
  22. --       exception that may be raised by any instantiation of
  23. --       GENERIC_ELEMENTARY_FUNCTIONS when a function in it receives an
  24. --       argument that violates its mathematical domain definition.  The
  25. --       package resulting from each of those instantiations exports an
  26. --       exception of the same name which is a renaming of this one.
  27. --
  28. --  Note:
  29. --
  30. --       Additional standards to be proposed in the future may add other
  31. --       exceptions to this package.
  32. --
  33. --  -----------------------------------------------------------------------
  34. --
  35. package elementary_functions_exceptions is
  36.  
  37.     argument_error : exception;
  38.  
  39. end elementary_functions_exceptions;
  40.  
  41. -- $Header: elem_func_exceptions_s.ada,v 3.13 90/04/19 12:33:31 broman Rel $
  42.